home *** CD-ROM | disk | FTP | other *** search
- Attribute VB_Name = "Module1"
- '-- Used by Shell_NotifyIconA
- Type NOTIFYICONDATA
- cbSize As Long
- hWnd As Long '-- Handle of the window that receives notification messages
- uID As Long '-- App-defined identifier of the taskbar icon
- uFlags As Long '-- Flags
- uCallbackMessage As Long '-- App-defined message identifier
- hIcon As Long '-- Handle to an icon
- szTip As String * 64 '-- Tool text display message
- End Type
-
- Global Const NIM_ADD = 0
- Global Const NIM_MODIFY = 1
- Global Const NIM_DELETE = 2
-
- Global Const NIF_MESSAGE = 1
- Global Const NIF_ICON = 2
- Global Const NIF_TIP = 4
-
- Declare Function Shell_NotifyIconA Lib "shell32" (ByVal dwMessage As Long, lpData As NOTIFYICONDATA) As Integer
-
-